From 4dac395814388d2b96f55dbe6c5b08c6790d2d90 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Tue, 22 May 2018 17:30:39 +0100 Subject: [PATCH] automation: introduce stretch-i386.dockerfile Signed-off-by: Wei Liu Reviewed-by: Doug Goldstein --- .../build/debian/stretch-i386.dockerfile | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 automation/build/debian/stretch-i386.dockerfile diff --git a/automation/build/debian/stretch-i386.dockerfile b/automation/build/debian/stretch-i386.dockerfile new file mode 100644 index 0000000000..5b77c90db3 --- /dev/null +++ b/automation/build/debian/stretch-i386.dockerfile @@ -0,0 +1,49 @@ +FROM i386/debian:stretch +LABEL maintainer.name="The Xen Project" \ + maintainer.email="xen-devel@lists.xenproject.org" + +ENV DEBIAN_FRONTEND=noninteractive +ENV USER root + +RUN mkdir /build +WORKDIR /build + +ENTRYPOINT ["/usr/bin/setarch", "i686", "/bin/bash"] + +# build depends +RUN apt-get update && \ + apt-get --quiet --yes install \ + build-essential \ + zlib1g-dev \ + libncurses5-dev \ + libssl-dev \ + python2.7-dev \ + xorg-dev \ + uuid-dev \ + libyajl-dev \ + libaio-dev \ + libglib2.0-dev \ + clang \ + libpixman-1-dev \ + pkg-config \ + flex \ + bison \ + gettext \ + acpica-tools \ + bin86 \ + bcc \ + liblzma-dev \ + libc6-dev \ + libnl-3-dev \ + ocaml-nox \ + libfindlib-ocaml-dev \ + markdown \ + transfig \ + pandoc \ + checkpolicy \ + wget \ + git \ + && \ + apt-get autoremove -y && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists* /tmp/* /var/tmp/* -- 2.30.2